home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 7 / Night Owl Shareware (NOPV7)(Night Owl Publisher Inc.)(1992).bin / 038a / bash1_12.arj / BASH1-12.TAR / bash-1.12 / builtins / shift.def < prev    next >
Text File  |  1991-11-14  |  2KB  |  91 lines

  1. This file is shift.def, from which is created shift.c.
  2. It implements the builtin "shift" in Bash.
  3.  
  4. Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
  5.  
  6. This file is part of GNU Bash, the Bourne Again SHell.
  7.  
  8. Bash is free software; you can redistribute it and/or modify it under
  9. the terms of the GNU General Public License as published by the Free
  10. Software Foundation; either version 1, or (at your option) any later
  11. version.
  12.  
  13. Bash is distributed in the hope that it will be useful, but WITHOUT ANY
  14. WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  16. for more details.
  17.  
  18. You should have received a copy of the GNU General Public License along
  19. with Bash; see the file COPYING.  If not, write to the Free Software
  20. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  21.  
  22. $PRODUCES shift.c
  23.  
  24. #include "../shell.h"
  25.  
  26. $BUILTIN shift
  27. $FUNCTION shift_builtin
  28. $SHORT_DOC shift [n]
  29. The positional parameters from $N+1 ... are renamed to $1 ...  If N is
  30. not given, it is assumed to be 1.
  31. $END
  32.  
  33. /* Shift the arguments ``left''.  Shift DOLLAR_VARS down then take one
  34.    off of REST_OF_ARGS and place it into DOLLAR_VARS[9].  If LIST has
  35.    anything in it, it is a number which says where to start the
  36.    shifting.  Return > 0 if `times' > $#, otherwise 0. */
  37. int
  38. shift_builtin (list)
  39.      WORD_LIST *list;
  40. {
  41.   int times = get_numeric_arg (list);
  42.   int number, r;
  43.   WORD_LIST *args;
  44.   extern WORD_LIST *list_rest_of_args ();
  45.  
  46.   if (!times)
  47.     return (EXECUTION_SUCCESS);
  48.  
  49.   if (times < 0)
  50.     {
  51.       builtin_error ("shift count must be >= 0");
  52.       return (EXECUTION_FAILURE);
  53.     }
  54.  
  55.   args = list_rest_of_args ();
  56.   number = list_length (args);
  57.   dispose_words (args);
  58.  
  59.   r = EXECUTION_SUCCESS;
  60.  
  61.   if (times > number)
  62.     {
  63.       times = number;
  64.       r = EXECUTION_FAILURE;
  65.     }
  66.  
  67.   while (times-- > 0)
  68.     {
  69.       register int count;
  70.  
  71.       if (dollar_vars[1])
  72.     free (dollar_vars[1]);
  73.  
  74.       for (count = 1; count < 9; count++)
  75.     dollar_vars[count] = dollar_vars[count + 1];
  76.  
  77.       if (rest_of_args)
  78.     {
  79.       WORD_LIST *temp = rest_of_args;
  80.  
  81.       dollar_vars[9] = savestring (temp->word->word);
  82.       rest_of_args = rest_of_args->next;
  83.       dispose_word (temp->word);
  84.     }
  85.       else
  86.     dollar_vars[9] = (char *)NULL;
  87.     }
  88.   return (r);
  89. }
  90.  
  91.